func time.appendInt

41 uses

	time (current package)
		format.go#L417: func appendInt(b []byte, x int, width int) []byte {
		format.go#L519: 	b = appendInt(b, nanosec, 9)
		format.go#L563: 			buf = appendInt(buf, int(m0), 0)
		format.go#L566: 		buf = appendInt(buf, int(m1), wid)
		format.go#L568: 		buf = appendInt(buf, int(m2), 9)
		format.go#L583: 	buf = appendInt(buf, year, 0)
		format.go#L590: 		buf = appendInt(buf, int(month), 0)
		format.go#L593: 	buf = appendInt(buf, day, 0)
		format.go#L595: 	buf = appendInt(buf, hour, 0)
		format.go#L597: 	buf = appendInt(buf, minute, 0)
		format.go#L599: 	buf = appendInt(buf, second, 0)
		format.go#L601: 	buf = appendInt(buf, t.Nanosecond(), 0)
		format.go#L707: 			b = appendInt(b, y%100, 2)
		format.go#L709: 			b = appendInt(b, year, 4)
		format.go#L716: 			b = appendInt(b, int(month), 0)
		format.go#L718: 			b = appendInt(b, int(month), 2)
		format.go#L725: 			b = appendInt(b, day, 0)
		format.go#L730: 			b = appendInt(b, day, 0)
		format.go#L732: 			b = appendInt(b, day, 2)
		format.go#L740: 			b = appendInt(b, yday, 0)
		format.go#L742: 			b = appendInt(b, yday, 3)
		format.go#L744: 			b = appendInt(b, hour, 2)
		format.go#L751: 			b = appendInt(b, hr, 0)
		format.go#L758: 			b = appendInt(b, hr, 2)
		format.go#L760: 			b = appendInt(b, min, 0)
		format.go#L762: 			b = appendInt(b, min, 2)
		format.go#L764: 			b = appendInt(b, sec, 0)
		format.go#L766: 			b = appendInt(b, sec, 2)
		format.go#L795: 			b = appendInt(b, zone/60, 2)
		format.go#L800: 				b = appendInt(b, zone%60, 2)
		format.go#L808: 				b = appendInt(b, absoffset%60, 2)
		format.go#L825: 			b = appendInt(b, zone/60, 2)
		format.go#L826: 			b = appendInt(b, zone%60, 2)
		format_rfc3339.go#L23: 	b = appendInt(b, year, 4)
		format_rfc3339.go#L25: 	b = appendInt(b, int(month), 2)
		format_rfc3339.go#L27: 	b = appendInt(b, day, 2)
		format_rfc3339.go#L33: 	b = appendInt(b, hour, 2)
		format_rfc3339.go#L35: 	b = appendInt(b, min, 2)
		format_rfc3339.go#L37: 	b = appendInt(b, sec, 2)
		format_rfc3339.go#L56: 	b = appendInt(b, zone/60, 2)
		format_rfc3339.go#L58: 	b = appendInt(b, zone%60, 2)